home *** CD-ROM | disk | FTP | other *** search
- /****
- * CTclShell.h
- *
- *
- ****/
-
- #define _H_CTclShell /* Include this file only once */
- #include <CDocument.h>
- #include <CApplication.h>
- #include "tcl.h"
-
- struct CTclShell : CDocument {
-
- Tcl_Interp *myInterp;
- /** Construction/Destruction **/
-
- void ITclShell(CApplication *aSupervisor, Boolean printable);
-
- void NewFile(void);
- void BuildWindow(Handle theData);
-
- virtual void Hprintf(char *,...);
- virtual int Eval(char *cmd,int flags,char **termPtr);
- virtual void Dispose();
- virtual void UpdateMenus();
- virtual Boolean Close(Boolean);
-
- };